home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem EGA Games: Menu batch file, SPETER Software.
- rem ----- handle game selection on command line
- if .%1==%1. goto begin
- if %1==a conquest conquest.ini
- if %1==d pokersq cards.tpg
- if %1==c squasher squasher.ini
- if %1==d aliens
- if %1==e walkline
- if %1==f walklin2
- if %1==g hypocycl
- if %1==x goto end
- :begin
- echo
- copyrect games.scr 0 0 0
- getmouse 3 4 24 12 AaBbCcDdEeFfGgXx 5 9
- :skip_inkey
- rem ---- letter entry
- if errorlevel 215 goto end
- if errorlevel 213 hypocycl
- if errorlevel 211 walklin2
- if errorlevel 209 walkline
- if errorlevel 207 aliens
- if errorlevel 205 squasher squasher.ini
- if errorlevel 203 pokersq cards.tpg
- if errorlevel 201 conquest conquest.ini
- rem ---- mouse entry
- if errorlevel 112 goto end
- if errorlevel 110 hypocycl
- if errorlevel 109 walklin2
- if errorlevel 108 walkline
- if errorlevel 107 aliens
- if errorlevel 106 squasher squasher.ini
- if errorlevel 105 pokersq cards.tpg
- if errorlevel 104 conquest conquest.ini
- goto begin
- :end
- echo
- cls
-